home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-06-21 | 563 b | 22 lines | [TEXT/CWIE] |
- // =============================================================================
- //
- // InitUtils.cp
- //
- // Author: Greg Friedman
- // Date: MacHack '96
- //
- // Do whatever you want with this source. Don't blame me if it doesn't work.
- //
- // =============================================================================
-
- #ifndef __GESTALTSTUFF__
- #include "GestaltStuff.h"
- #endif
-
- Boolean gHasProcessMgr = FALSE;
-
- Boolean HasGestaltAttribute(OSType attr, short itsBit)
- {
- long response;
- return (Gestalt(attr, &response) == noErr) && (((response >> itsBit) & 1) != 0);
- }